home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / malloc_db / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  438 b   |  24 lines

  1.  
  2. include $(ROOT)/usr/include/make/commondefs
  3.  
  4. LCOPTS  = -xansi -D__STDC__ -g
  5. LCINCS  = -I../include
  6. CVERSION=
  7. TARGETS = test test_clib test_mdb
  8. PROTOTYPES=
  9.  
  10. default all: $(TARGETS)
  11.  
  12. include $(COMMONRULES)
  13.  
  14. test: test.c
  15.     $(CCF) -o test test.c $(LDFLAGS)
  16.  
  17. test_clib: test.c
  18.     $(CCF) -o test_clib -DCLIBS_DEBUG=1 test.c $(LDFLAGS) -lmalloc
  19.  
  20. test_mdb: test.c malloc_db.c
  21.     $(CCF) -o test_mdb -DMDB_DEBUG=1 test.c malloc_db.c $(LDFLAGS) -lmpc
  22.  
  23.  
  24.